Fix off by one in check for GtkRoundedBox containing a rectangle
authorGustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Thu, 17 Nov 2016 17:15:50 +0000 (15:15 -0200)
committerGustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Mon, 21 Nov 2016 12:53:11 +0000 (10:53 -0200)
commit8e5e165f79b2aada3d9d051b8bfe17ca79b139ce
treeed2203564774fd9586134cfabb758527cd95fa4a
parent895fd0e773025bc6d311005065ab487e710467ac
Fix off by one in check for GtkRoundedBox containing a rectangle

When checking if a rectangle is contained by the rounded box, the code
will refuse a rectangle which is the exact size as the one backing the
rounded box, since it checks for greater or equal width and height.
Check for greater only instead.

https://bugzilla.gnome.org/show_bug.cgi?id=774114
gtk/gtkroundedbox.c